Fix up exported symbols
authorMatthias Clasen <mclasen@redhat.com>
Fri, 3 Feb 2012 12:41:14 +0000 (07:41 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 14 Feb 2012 21:36:54 +0000 (16:36 -0500)
Only GtkColorChooser* is public for now.

gtk/gtk.symbols
gtk/gtkcoloreditor.h
gtk/gtkcolorplane.h
gtk/gtkcolorscale.h
gtk/gtkcolorswatch.h

index 4acba3d6625444c7be7b4000643fe19d1dd6eca5..9a49a41ec50fffef454dc9e81980599737f81bbf 100644 (file)
@@ -605,6 +605,15 @@ gtk_color_button_set_color
 gtk_color_button_set_rgba
 gtk_color_button_set_title
 gtk_color_button_set_use_alpha
+gtk_color_chooser_dialog_get_type
+gtk_color_chooser_dialog_new
+gtk_color_chooser_get_color
+gtk_color_chooser_get_show_alpha
+gtk_color_chooser_get_type
+gtk_color_chooser_set_color
+gtk_color_chooser_set_show_alpha
+gtk_color_chooser_widget_get_type
+gtk_color_chooser_widget_new
 gtk_color_selection_dialog_get_color_selection
 gtk_color_selection_dialog_get_type
 gtk_color_selection_dialog_new
index 25dfe73763fb91847becbf55f0ba98c35d9568ac..b8ee2197e7429ccdab1eee4f0b3628ed6f87e9a4 100644 (file)
@@ -59,8 +59,10 @@ struct _GtkColorEditorClass
 };
 
 
+G_GNUC_INTERNAL
 GType       gtk_color_editor_get_type (void) G_GNUC_CONST;
 
+G_GNUC_INTERNAL
 GtkWidget * gtk_color_editor_new      (void);
 
 G_END_DECLS
index 0c48a81141d3fe2697793c1a173d8cd80eec9319..9bf22cacfe8b8006f604186653c14384e7234df6 100644 (file)
@@ -59,8 +59,10 @@ struct _GtkColorPlaneClass
 };
 
 
+G_GNUC_INTERNAL
 GType       gtk_color_plane_get_type (void) G_GNUC_CONST;
 
+G_GNUC_INTERNAL
 GtkWidget * gtk_color_plane_new      (GtkAdjustment *h_adj,
                                       GtkAdjustment *s_adj,
                                       GtkAdjustment *v_adj);
index 385706a03e1188892d68b0ba0cf4229a208e73d5..f5d28ba993c9cf41ab538c1aeaa0b6a2ba67b6fc 100644 (file)
@@ -64,11 +64,15 @@ typedef enum
   GTK_COLOR_SCALE_ALPHA
 } GtkColorScaleType;
 
+G_GNUC_INTERNAL
 GType       gtk_color_scale_get_type  (void) G_GNUC_CONST;
 
+G_GNUC_INTERNAL
 GtkWidget * gtk_color_scale_new       (void);
+G_GNUC_INTERNAL
 void        gtk_color_scale_set_type  (GtkColorScale     *scale,
                                        GtkColorScaleType  type);
+G_GNUC_INTERNAL
 void        gtk_color_scale_set_color (GtkColorScale     *scale,
                                        const GdkRGBA     *color);
 
index 6c7748b01e640195cc1de8182ab44f361511c907..10f6cd8fcf9712031367a4d8e26222ed313de41e 100644 (file)
@@ -63,24 +63,33 @@ struct _GtkColorSwatchClass
 };
 
 
+G_GNUC_INTERNAL
 GType       gtk_color_swatch_get_type         (void) G_GNUC_CONST;
 
+G_GNUC_INTERNAL
 GtkWidget * gtk_color_swatch_new              (void);
+G_GNUC_INTERNAL
 void        gtk_color_swatch_set_corner_radii (GtkColorSwatch *swatch,
                                                gdouble         top_left,
                                                gdouble         top_right,
                                                gdouble         bottom_right,
                                                gdouble         bottom_left);
+G_GNUC_INTERNAL
 void        gtk_color_swatch_set_color        (GtkColorSwatch *swatch,
                                                const GdkRGBA  *color);
+G_GNUC_INTERNAL
 gboolean    gtk_color_swatch_get_color        (GtkColorSwatch *swatch,
                                                GdkRGBA        *color);
+G_GNUC_INTERNAL
 void        gtk_color_swatch_set_selected     (GtkColorSwatch *swatch,
                                                gboolean        selected);
+G_GNUC_INTERNAL
 void        gtk_color_swatch_set_can_drop     (GtkColorSwatch *swatch,
                                                gboolean        can_drop);
+G_GNUC_INTERNAL
 void        gtk_color_swatch_set_icon         (GtkColorSwatch *swatch,
                                                const gchar    *icon);
+G_GNUC_INTERNAL
 void        gtk_color_swatch_set_show_alpha   (GtkColorSwatch *swatch,
                                                gboolean        show_alpha);